/* Estilos datatable */
.dtr-control::before {
    border-left: 10px solid rgb(26, 115, 232) !important;
}

.dtr-expanded td::before {
    border-top: 10px solid rgb(255, 0, 0) !important;
    border-left: none;
}

.dtr-expanded>.dtr-control::before {

    border-left: 5px solid transparent !important;
}

.dt-paging nav {
    width: 10px;
    height: 35px;
    text-align: center;
    display: flex !important;
    flex-direction: row;
    justify-content: end;
    gap: 4px;
    align-items: center;
    margin: 0 auto;
    border-radius: 30%;
}

.dt-paging nav button {
    width: 34px;
    min-width: 10px !important;
    height: 35px;
    min-height: 10px;
    border-radius: 30% !important;
    border: 1px solid #e2e8f0 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.dt-search #dt-search-0{
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    padding: 8px !important;
}
.dt-layout-row .dt-input{
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 8px !important;
}
/* Estilos datatable */

/* Estilos notificacion generica*/
.notification {
    background-color: #00000061;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.notification__body {
    background-color: #e2e8f0;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 0.75rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    max-width: 330px;
    max-height: 330px;
    text-align: center;
    margin: auto;
    transition-duration: 700ms;
    transition-property: transform;
    transform: scale(0);
}
.body__notification--scale{
    transform: scale(1);
}

.notification__body div {
    margin-bottom: 4px;
}

.notification__body div i {
    padding: 32px;
    height: 42px;
    width: 42px;
    border: 5px solid white;
    border-radius: 9999px;
    color: white;
    text-align: center;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.notification__body .title__notification {
    color: #1f2937;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notification__body .description__notification {
    color: #121212;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.notification__body .btn__close--notification {
    height: auto;
    width: 50%;
    background-color: #181818;
    color: #ffffff;
    border-radius: 0.375rem;
    padding: 0.5rem 0;
}
.empty-survey-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #444;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease-in-out;
}

.empty-icon {
  font-size: 60px;
  animation: float 2s ease-in-out infinite;
  margin-bottom: 10px;
}

.empty-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.empty-text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.empty-text a{
    text-decoration: none;
    color: #cc6814;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
